home *** CD-ROM | disk | FTP | other *** search
- //
- // The Fusion Library Interface for DOS
- // Version 1.06c
- // Copyright (C) 1990, 1991, 1992
- // Software Dimensions
- //
- // BlazeClass
- //
-
- #include "fli.h"
-
- #ifdef __BCPLUSPLUS__
- #pragma hdrstop
- #endif
-
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- //
- // << operator
- //
- // Displays a single character on the display
- //
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-
- int SingleCharacter = 0;
-
- BlazeClass& BlazeClass::operator<< (char Value)
- {
- SingleCharacter=1;
- char __quickText[2];
- __quickText[0]=Value, __quickText[1]=0;
- *this << (char *)__quickText;
- SingleCharacter=0;
- return *this;
- }
-
-